home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsincludes / clib / gbradio_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.5 KB  |  52 lines

  1. #ifndef CLIB_EGB_GBRADIO_PROTOS_H
  2. #define CLIB_EGB_GBRADIO_PROTOS_H
  3.  
  4. /***************************************************************************\
  5. *  $
  6. *  $ FILE     : gbradio_protos.h
  7. *  $ VERSION  : 1
  8. *  $ REVISION : 2
  9. *  $ DATE     : 22-Mar-93 01:32
  10. *  $
  11. *  $ Author   : mvk
  12. *  $
  13. *
  14. *  C prototypes
  15. *
  16. *****************************************************************************
  17. *                                                                           *
  18. * (c) Copyright 1990/93 VIONA Development                                   *
  19. *     All Rights Reserved                                                   *
  20. *                                                                           *
  21. \***************************************************************************/
  22.  
  23. #ifndef         EXEC_TYPES_H
  24. #include        <exec/types.h>
  25. #endif
  26. #ifndef         EGS_EGSINTUI_H
  27. #include        <egs/egsintui.h>
  28. #endif
  29. #ifndef         EGS_EGSGADBOX_H
  30. #include        <egs/egsgadbox.h>
  31. #endif
  32. #ifndef         EGS_EGB_GBRADIO_H
  33. #include        <egs/egb/gbradio.h>
  34. #endif
  35.  
  36. EB_GadBoxPtr EGB_CreateRadioGadget(EB_GadContext con,
  37.                   EB_StrArrayPtr names,
  38.                   WORD height, LONG id);
  39.  
  40. void EGB_ModifyRadioGadget(EI_WindowPtr win,
  41.                EI_GadgetPtr gad, LONG data);
  42.  
  43. void EGB_OnRadioElems(EI_WindowPtr win,
  44.               EI_GadgetPtr gad,
  45.               ULONG        elems);
  46.  
  47. void EGB_OffRadioElems(EI_WindowPtr win,
  48.                EI_GadgetPtr gad,
  49.                ULONG        elems);
  50. #endif /* CLIB_EGB_GBRADIO_PROTOS_H */
  51.  
  52.